summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2023-03-18 08:26:52 +0100
committerbunnei <bunneidev@gmail.com>2023-06-03 09:05:43 +0200
commitf45a0b94d64819273919119b0a19bda1566713e6 (patch)
tree40217757b2f6d3b89c40ec3edb472be4a078ea4c
parentcommon: link libandroid on android (diff)
downloadyuzu-f45a0b94d64819273919119b0a19bda1566713e6.tar
yuzu-f45a0b94d64819273919119b0a19bda1566713e6.tar.gz
yuzu-f45a0b94d64819273919119b0a19bda1566713e6.tar.bz2
yuzu-f45a0b94d64819273919119b0a19bda1566713e6.tar.lz
yuzu-f45a0b94d64819273919119b0a19bda1566713e6.tar.xz
yuzu-f45a0b94d64819273919119b0a19bda1566713e6.tar.zst
yuzu-f45a0b94d64819273919119b0a19bda1566713e6.zip
-rw-r--r--src/android/app/src/main/res/layout/fragment_emulation.xml14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/android/app/src/main/res/layout/fragment_emulation.xml b/src/android/app/src/main/res/layout/fragment_emulation.xml
index c2eb097f9..a3e5707ef 100644
--- a/src/android/app/src/main/res/layout/fragment_emulation.xml
+++ b/src/android/app/src/main/res/layout/fragment_emulation.xml
@@ -24,6 +24,13 @@
android:focusable="false"
android:focusableInTouchMode="false" />
+ <org.yuzu.yuzu_emu.overlay.InputOverlay
+ android:id="@+id/surface_input_overlay"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:focusable="true"
+ android:focusableInTouchMode="true" />
+
<TextView
android:id="@+id/show_fps_text"
android:layout_width="wrap_content"
@@ -37,11 +44,4 @@
android:textColor="@android:color/white"
android:textSize="12sp" />
- <org.yuzu.yuzu_emu.overlay.InputOverlay
- android:id="@+id/surface_input_overlay"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:focusable="true"
- android:focusableInTouchMode="true" />
-
</FrameLayout>